body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background: url('bg.png') no-repeat center center fixed;
    background-size: cover;
}

header {
    background-color: #333;
    padding: 15px;
    color: white;
    display: flex;
    align-items: center;
}

#logo {
    width: 50px;
    height: 50px;
    margin-right: 10px;
}

h1 {
    margin: 0;
}

nav {
    display: flex;
    justify-content: space-around;
    background-color: #444;
    padding: 10px;
    border-bottom: 2px solid #333;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: #555;
}

section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 80vh;
    background: url('Logo2.png') no-repeat center top;
    background-size: auto;
    color: white;
    padding: 20px;
}

.content {
    text-align: center;
}

.download-button {
    display: inline-block;
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.download-button img {
    margin-left: 10px;
    width: 20px;
    height: 20px;
}

.download-button:hover {
    background-color: #0056b3;
}
